var app = angular.module('app', []); app.controller('myController', function ($scope) { $scope.ClickMe = function () { alert("Click me"); } });